home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
System Booster
/
System Booster.iso
/
Systemmonitors
/
PickPacket
/
src
/
request.c
< prev
next >
Wrap
C/C++ Source or Header
|
1996-09-26
|
939b
|
28 lines
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *\
* |_o_o|\\ Copyright (c) 1989 The Software Distillery. *
* |. o.| || All Rights Reserved *
* | . | || Written by John Toebes and Doug Walker *
* | o | || The Software Distillery *
* | . |// 235 Trillingham Lane *
* ====== Cary, NC 27513 *
* BBS:(919)-471-6436 *
\* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include "pickpack.h"
#include "reqgen.h"
int reqinit()
{
if(!(Request(&RequesterStructure1, Window))) return(-1);
return(0);
}
int reqkill()
{
long l;
stcd_l(BUFLENSIBuff, &l);
EndRequest(&RequesterStructure1, Window);
return(l);
}